This script displays a question based on the applicant's Body Mass Index (BMI). The minimum and maximum are able to be configured, and you must replace "HEIGHT QUESTION NAME HERE" and "WEIGHT QUESTION NAME HERE" with the actual name of the question that will feed this script.
// Display a question if the applicant's BMI is above X or below X.
// This can easily be used to disqualify or show a warning to someone with a BMI more than X or less than X.
// Be sure to set up your question as text and put "display:none" in the Style field.
Event.Value = false;
var max = 35; // change this for max
var min = 16; // change this for min
var heightQuestion = "HEIGHT QUESTION NAME HERE"; // put the height question here
var weightQuestion = "WEIGHT QUESTION NAME HERE"; // put the weight question here
var height = parseInt(Event.GetAnswer(Event.CurrentPerson, heightQuestion));
var weight = parseInt(Event.GetAnswer(Event.CurrentPerson, weightQuestion));
// do the BMI math
var BMItop = weight * 703;
var BMIbottom = height * height;
var BMItotal = BMItop / BMIbottom;
if (BMItotal > max || BMItotal < min) {
Event.Value = true;
}